Relation between CLASS and
STRUCT
struct date
{
    int year, month,
day;
};
class date
{
   public:
   date(); // constructor
   ~date();  // destructor
   int year, month, day;
};